home *** CD-ROM | disk | FTP | other *** search
- setMenuParams();
- setNewNav();
- playBTN.onRollOver = function()
- {
- playGameMC.gotoAndPlay("on");
- };
- playBTN.onRollOut = function()
- {
- playGameMC.gotoAndPlay("turnOff");
- };
- highBTN.onRollOver = function()
- {
- hiScoresMC.gotoAndPlay("on");
- };
- highBTN.onRollOut = function()
- {
- hiScoresMC.gotoAndPlay("turnOff");
- };
- helpBTN.onRollOver = function()
- {
- instructMC.gotoAndPlay("on");
- };
- helpBTN.onRollOut = function()
- {
- instructMC.gotoAndPlay("turnOff");
- };
- tellBTN.onRollOver = function()
- {
- tellFriendMC.gotoAndPlay("on");
- };
- tellBTN.onRollOut = function()
- {
- tellFriendMC.gotoAndPlay("turnOff");
- };
- playBTN.onRelease = function()
- {
- _root.section = 5;
- gotoAndPlay(_root._currentFrame + 1);
- };
- highBTN.onRelease = function()
- {
- _root.section = 9;
- gotoAndPlay(_root._currentFrame + 1);
- };
- helpBTN.onRelease = function()
- {
- _root.section = 2;
- gotoAndPlay(_root._currentFrame + 1);
- };
- tellBTN.onRelease = function()
- {
- var _loc1_ = "javascript:openTellAFriendWindow(\'" + home.tellURL + "\',450,650)";
- getURL(_loc1_,"");
- };
- Key.addListener(menuKey);
- stop();
-